1
0
mirror of https://github.com/ebosas/microservices.git synced 2026-04-30 19:08:44 +02:00
Files
microservices/init/database.sql
T

10 lines
156 B
SQL
Raw Normal View History

2021-06-01 14:26:02 +03:00
create database microservices;
\c microservices
create table messages (
id serial primary key,
message text not null,
created timestamp not null
);