This repository has been archived by the owner on Jun 16, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #110 from Oslandia/wip_2.2
Wip 2.2
- Loading branch information
Showing
38 changed files
with
7,211 additions
and
5,624 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
create table _albion.$NAME( | ||
id varchar primary key default _albion.unique_id()::varchar, | ||
hole_id varchar not null references _albion.hole(id) on delete cascade on update cascade, | ||
from_ real check (from_>=0), | ||
to_ real check (to_>=0), | ||
${FIELDS_DEFINITION}) | ||
; | ||
|
||
insert into _albion.layer(name, fields_definition) values ('$NAME', '$FIELDS_DEFINITION') | ||
; |
Oops, something went wrong.