Skip to content

Commit 5cbb917

Browse files
Merge pull request #55 from adela-bytebase/adela-bytebase-patch-51
Create 1.0.2_add_nickname.sql and add some data
2 parents f4fe662 + 8790558 commit 5cbb917

File tree

2 files changed

+9
-0
lines changed

2 files changed

+9
-0
lines changed
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
ALTER TABLE public.t1
2+
ADD COLUMN nickname text NOT NULL DEFAULT '';
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
INSERT INTO public.t1 (username, nickname)
2+
VALUES
3+
('alice', 'ali'),
4+
('bob', 'bobby'),
5+
('charlie', 'char'),
6+
('david', 'dave'),
7+
('emma', 'em');

0 commit comments

Comments
 (0)