mirror of
https://github.com/status-im/migrate.git
synced 2025-02-23 16:28:08 +00:00
This addresses https://github.com/golang-migrate/migrate/issues/90 . The exported Redshift object no longer exports an embedde 'Driver' however, so some more work is needed to make this backwards compatible.
6 lines
95 B
SQL
6 lines
95 B
SQL
CREATE TABLE users (
|
|
user_id integer unique,
|
|
name varchar(40),
|
|
email varchar(40)
|
|
);
|