· 9 years ago · Jan 26, 2017, 01:54 AM
1echo "Prepare to enter the db password for user root"
2mysql -p -u root -D mysql << END
3create table if not exists foo
4(
5 uuid varchar(64) not null unique,
6 pre_shared_key text
7);
8select *
9from foo;
10
11insert into foo
12values
13("some UUID", "some text");
14
15select *
16from foo;
17
18drop table foo;
19
20END