Created
January 5, 2016 10:00
-
-
Save serut/3d0a39330dd4f76be701 to your computer and use it in GitHub Desktop.
DBSchema SQLite issue
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
DROP TABLE IF EXISTS Foo; | |
CREATE TABLE Foo ( | |
Id INTEGER NOT NULL, | |
Lastname VARCHAR( 32 ) , | |
Firstname VARCHAR( 32 ) , | |
PRIMARY KEY ( Id ) | |
); //This is working so far | |
DROP TABLE IF EXISTS Foo; | |
CREATE TABLE Foo ( | |
Id INTEGER NOT NULL, | |
Lastname VARCHAR( 32 ) , | |
// fails here | |
Firstname VARCHAR( 32 ) , | |
PRIMARY KEY ( Id ) | |
); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment