DataRaft swift package
This commit is contained in:
12
Tests/DataRaftTests/Resources/migration_1.sql
Normal file
12
Tests/DataRaftTests/Resources/migration_1.sql
Normal file
@@ -0,0 +1,12 @@
|
||||
-- Create table User
|
||||
CREATE TABLE User (
|
||||
id INTEGER PRIMARY KEY,
|
||||
name TEXT NOT NULL,
|
||||
email TEXT NOT NULL
|
||||
);
|
||||
|
||||
-- Insert values into User
|
||||
INSERT INTO User (id, name, email)
|
||||
VALUES
|
||||
(1, 'john_doe', 'john@example.com'), -- Inserting John Doe
|
||||
(2, 'jane_doe', 'jane@example.com'); -- Inserting Jane Doe
|
||||
Reference in New Issue
Block a user