diff options
Diffstat (limited to 'db/migrate/000001_create_clients_table.up.sql')
| -rw-r--r-- | db/migrate/000001_create_clients_table.up.sql | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/db/migrate/000001_create_clients_table.up.sql b/db/migrate/000001_create_clients_table.up.sql new file mode 100644 index 0000000..e5af07b --- /dev/null +++ b/db/migrate/000001_create_clients_table.up.sql @@ -0,0 +1,4 @@ +CREATE TABLE IF NOT EXISTS clients( + id serial PRIMARY KEY, + name VARCHAR(255) NOT NULL +); |
