-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
10e2c80
commit bbe1bd5
Showing
4 changed files
with
167 additions
and
85 deletions.
There are no files selected for viewing
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,53 +1,84 @@ | ||
local schema = require('crud.schema') | ||
|
||
return function() | ||
if box.info.ro == true then | ||
return | ||
end | ||
|
||
local engine = os.getenv('ENGINE') or 'memtx' | ||
|
||
local customers_space = box.schema.space.create('customers', { | ||
format = { | ||
{name = 'id', type = 'unsigned'}, | ||
{name = 'bucket_id', type = 'unsigned'}, | ||
{name = 'name', type = 'string'}, | ||
{name = 'age', type = 'number'}, | ||
}, | ||
if_not_exists = true, | ||
engine = engine, | ||
}) | ||
customers_space:create_index('id', { | ||
parts = { {field = 'id'} }, | ||
if_not_exists = true, | ||
}) | ||
customers_space:create_index('bucket_id', { | ||
parts = { {field = 'bucket_id'} }, | ||
unique = false, | ||
if_not_exists = true, | ||
}) | ||
|
||
local shops_space = box.schema.space.create('shops', { | ||
format = { | ||
rawset(_G, 'reload_schema', function() | ||
for name, space in pairs(box.space) do | ||
-- Can be indexed by space id and space name, | ||
-- so we need to be careful with duplicates. | ||
if type(name) == 'string' and schema.system_spaces[name] == nil then | ||
space:drop() | ||
end | ||
end | ||
|
||
local customers_space = box.schema.space.create('customers', { | ||
format = { | ||
{name = 'id', type = 'unsigned'}, | ||
{name = 'bucket_id', type = 'unsigned'}, | ||
{name = 'name', type = 'string'}, | ||
{name = 'age', type = 'number'}, | ||
}, | ||
if_not_exists = true, | ||
engine = engine, | ||
}) | ||
customers_space:create_index('id', { | ||
parts = { {field = 'id'} }, | ||
if_not_exists = true, | ||
}) | ||
customers_space:create_index('bucket_id', { | ||
parts = { {field = 'bucket_id'} }, | ||
unique = false, | ||
if_not_exists = true, | ||
}) | ||
|
||
local shops_space = box.schema.space.create('shops', { | ||
format = { | ||
{name = 'registry_id', type = 'unsigned'}, | ||
{name = 'bucket_id', type = 'unsigned'}, | ||
{name = 'name', type = 'string'}, | ||
{name = 'address', type = 'string'}, | ||
{name = 'owner', type = 'string', is_nullable = true}, | ||
}, | ||
if_not_exists = true, | ||
engine = engine, | ||
}) | ||
shops_space:create_index('registry', { | ||
parts = { {field = 'registry_id'} }, | ||
if_not_exists = true, | ||
}) | ||
shops_space:create_index('bucket_id', { | ||
parts = { {field = 'bucket_id'} }, | ||
unique = false, | ||
if_not_exists = true, | ||
}) | ||
shops_space:create_index('address', { | ||
parts = { {field = 'address'} }, | ||
unique = true, | ||
if_not_exists = true, | ||
}) | ||
end) | ||
|
||
rawset(_G, 'alter_schema', function() | ||
box.space['customers']:create_index('age', { | ||
parts = { {field = 'age'} }, | ||
unique = false, | ||
if_not_exists = true, | ||
}) | ||
|
||
box.space['shops']:format({ | ||
{name = 'registry_id', type = 'unsigned'}, | ||
{name = 'bucket_id', type = 'unsigned'}, | ||
{name = 'name', type = 'string'}, | ||
{name = 'address', type = 'string'}, | ||
{name = 'owner', type = 'string', is_nullable = true}, | ||
}, | ||
if_not_exists = true, | ||
engine = engine, | ||
}) | ||
shops_space:create_index('registry', { | ||
parts = { {field = 'registry_id'} }, | ||
if_not_exists = true, | ||
}) | ||
shops_space:create_index('bucket_id', { | ||
parts = { {field = 'bucket_id'} }, | ||
unique = false, | ||
if_not_exists = true, | ||
}) | ||
shops_space:create_index('address', { | ||
parts = { {field = 'address'} }, | ||
unique = true, | ||
if_not_exists = true, | ||
}) | ||
{name = 'salary', type = 'unsigned', is_nullable = true}, | ||
}) | ||
end) | ||
|
||
rawget(_G, 'reload_schema')() | ||
end |
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