mirror of
https://github.com/c9s/bbgo.git
synced 2024-11-10 09:11:55 +00:00
13 lines
216 B
SQL
13 lines
216 B
SQL
-- +up
|
|
-- +begin
|
|
-- We can not change column type in sqlite
|
|
-- However, SQLite does not enforce the length of a VARCHAR, i.e VARCHAR(8) == VARCHAR(20) == TEXT
|
|
SELECT 1;
|
|
-- +end
|
|
|
|
-- +down
|
|
|
|
-- +begin
|
|
SELECT 1;
|
|
-- +end
|