Skip to content
This repository has been archived by the owner on Nov 9, 2017. It is now read-only.

Commit

Permalink
Users
Browse files Browse the repository at this point in the history
  • Loading branch information
myfreeweb committed Feb 20, 2011
1 parent cf5fb05 commit fea526a
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 0 deletions.
1 change: 1 addition & 0 deletions Gemfile
Expand Up @@ -2,3 +2,4 @@ source :rubygems
gem 'sinatra'
gem 'haml'
gem 'dropbox'
gem 'sequel'
12 changes: 12 additions & 0 deletions migration.rb
@@ -0,0 +1,12 @@
Sequel.migration do
up do
create_table(:users) do
primary_key :id
String :email
String :folder
end
end
down do
drop_table(:users)
end
end

0 comments on commit fea526a

Please sign in to comment.