Skip to content

Commit

Permalink
Added creation of keyspace testMindsV3SplitColumn
Browse files Browse the repository at this point in the history
  • Loading branch information
suarezgpablo committed Oct 3, 2024
1 parent 92dfe0d commit 11705ed
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions modevo-script/dat/inp/creationSchema.cql
Original file line number Diff line number Diff line change
Expand Up @@ -285,6 +285,22 @@ CREATE TABLE "testMindsV27NewTableMigrationFromOneTable".user (
key text,
PRIMARY KEY (key)
);
-- Export of keyspace testMindsV3SplitColumn
CREATE KEYSPACE "testMindsV3SplitColumn"
WITH durable_writes = true
AND replication = {
'class' : 'SimpleStrategy',
'replication_factor' : 1
};

CREATE TABLE "testMindsV3SplitColumn".comments (
id text,
parent_guid text,
parent_guid_c1 text,
parent_guid_c2 text,
parent_guid_c3 text,
PRIMARY KEY (id)
);

-- Export of keyspace testMindsV9NewColumnsPreviousVersion
CREATE KEYSPACE "testMindsV9NewColumnsPreviousVersion"
Expand Down

0 comments on commit 11705ed

Please sign in to comment.