mirror of
https://github.com/ENSL/ensl.org.git
synced 2024-12-27 04:51:14 +00:00
10 lines
154 B
Ruby
10 lines
154 B
Ruby
class BigSession < ActiveRecord::Migration
|
|
def up
|
|
change_table :sessions do |t|
|
|
t.change :data, :longtext
|
|
end
|
|
end
|
|
|
|
def down
|
|
end
|
|
end
|