mirror of
https://github.com/ebosas/microservices.git
synced 2025-06-06 22:16:11 +02:00
10 lines
156 B
MySQL
10 lines
156 B
MySQL
|
create database microservices;
|
||
|
|
||
|
\c microservices
|
||
|
|
||
|
create table messages (
|
||
|
id serial primary key,
|
||
|
message text not null,
|
||
|
created timestamp not null
|
||
|
);
|