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