1
0
mirror of https://github.com/ebosas/microservices.git synced 2025-06-06 22:16:11 +02:00
microservices/init/database.sql

10 lines
156 B
MySQL
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
);