added sequel and sqlite bits for the table

This commit is contained in:
2023-09-13 19:08:40 -07:00
parent 81b22d0c4a
commit 795f547ff2
4 changed files with 14 additions and 0 deletions
+8
View File
@@ -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
Binary file not shown.