mirror of
https://github.com/TECHNOFAB11/dbmate.git
synced 2025-12-12 08:00:04 +01:00
9 lines
138 B
SQL
9 lines
138 B
SQL
-- migrate:up
|
|
create table categories (
|
|
id integer,
|
|
title varchar(50),
|
|
slug varchar(100)
|
|
);
|
|
|
|
-- migrate:down
|
|
drop table categories;
|