You've already forked microservices
mirror of
https://github.com/ebosas/microservices.git
synced 2025-06-24 22:26:56 +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
|
||
|
);
|