mirror of
https://github.com/TracksApp/tracks.git
synced 2025-12-17 15:50:13 +01:00
15 lines
303 B
Ruby
15 lines
303 B
Ruby
class AddSessionsTable < ActiveRecord::Migration
|
|
def self.up
|
|
create_table :sessions do |t|
|
|
t.column :session_id, :string
|
|
t.column :data, :text
|
|
t.column :updated_at, :datetime
|
|
end
|
|
|
|
add_index :sessions, :session_id
|
|
end
|
|
|
|
def self.down
|
|
drop_table :sessions
|
|
end
|
|
end
|