mirror of
https://github.com/ebosas/microservices.git
synced 2024-11-24 08:02:24 +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
|
|
);
|