Working on signup and signin

This commit is contained in:
Kyle Drake 2013-05-25 13:57:17 -07:00
parent 50882756d0
commit 4ddd244588
12 changed files with 105 additions and 11 deletions

View file

@ -0,0 +1,13 @@
Sequel.migration do
up {
DB.create_table! :tags do
primary_key :id
String :name
DateTime :created_at
end
}
down {
DB.drop_table :tags
}
end

View file

@ -0,0 +1,12 @@
Sequel.migration do
up {
DB.create_table! :site_tags do
Integer :site_id
Integer :tag_id
end
}
down {
DB.drop_table :site_tags
}
end