DataRaft swift package
This commit is contained in:
11
Tests/DataRaftTests/Resources/migration_2.sql
Normal file
11
Tests/DataRaftTests/Resources/migration_2.sql
Normal file
@@ -0,0 +1,11 @@
|
||||
-- Create table Device
|
||||
CREATE TABLE Device (
|
||||
id INTEGER PRIMARY KEY,
|
||||
model TEXT NOT NULL
|
||||
);
|
||||
|
||||
-- Insert values into Device
|
||||
INSERT INTO Device (id, model)
|
||||
VALUES
|
||||
(1, 'iPhone 14'), -- Inserting iPhone 14
|
||||
(2, 'iPhone 15'); -- Inserting iPhone 15
|
||||
Reference in New Issue
Block a user