added sequel and sqlite bits for the table
This commit is contained in:
@@ -0,0 +1,8 @@
|
||||
Sequel.migration do
|
||||
change do
|
||||
create_table :links do
|
||||
String :url, unique: true, null: false
|
||||
String :code, primary_key: true, unique: true, null: false
|
||||
end
|
||||
end
|
||||
end
|
||||
Reference in New Issue
Block a user