You've already forked microservices
mirror of
https://github.com/ebosas/microservices.git
synced 2026-04-30 19:08:44 +02:00
10 lines
156 B
SQL
10 lines
156 B
SQL
|
|
create database microservices;
|
||
|
|
|
||
|
|
\c microservices
|
||
|
|
|
||
|
|
create table messages (
|
||
|
|
id serial primary key,
|
||
|
|
message text not null,
|
||
|
|
created timestamp not null
|
||
|
|
);
|