1
0
Fork 0
fatkitten/app/database.rb

10 lines
226 B
Ruby
Raw Normal View History

2013-07-09 07:53:49 +00:00
DB = Sequel.connect(CONFIG[:database_url])
2013-07-09 08:04:03 +00:00
# DB.drop_table(:pastes) if DB.table_exists?(:pastes)
2013-07-09 07:53:49 +00:00
DB.create_table(:pastes) do
primary_key :id
String :type
Text :contents
end unless DB.table_exists?(:pastes)