mirror of
https://github.com/TracksApp/tracks.git
synced 2025-12-16 07:10:12 +01:00
15 lines
308 B
Ruby
15 lines
308 B
Ruby
class AddSessionsTable < ActiveRecord::Migration[5.2]
|
|
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
|