migrate/database/firebird/examples/migrations/1385949617_create_books_table.up.sql
Kirill Muratov 2c9773ed89 Added Firebird support (#191)
* Added Firebird support

* Fixed typo

* Refactoring

* Schema migrations table name don't have to be upper case

* Fixed readme

* Added Firebird 2.5 support

* Removed SchemaName

* Refactoring
2019-03-21 01:51:49 -07:00

6 lines
88 B
SQL

CREATE TABLE books (
user_id integer,
name varchar(40),
author varchar(40)
);