blob: 0b1696a58b0894f76155d2ad0c185e9cf472d933 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
-- migrate:up
create table official_climbs (
id integer primary key,
name text not null,
start_latitude real not null,
start_longitude real not null,
end_latitude real not null,
end_longitude real not null,
created_at text not null default (strftime('%Y-%m-%dT%H:%M:%SZ', 'now')),
updated_at text not null default (strftime('%Y-%m-%dT%H:%M:%SZ', 'now'))
);
-- migrate:down
drop table official_climbs;
|