13 lines
282 B
Ruby
13 lines
282 B
Ruby
|
class CreateStatistics < ActiveRecord::Migration
|
||
|
def change
|
||
|
create_table :statistics do |t|
|
||
|
t.string :name
|
||
|
t.text :description, :limit => 4294967296
|
||
|
t.integer :user_id
|
||
|
t.integer :status, :default => 0, :limit => 1
|
||
|
|
||
|
t.timestamps
|
||
|
end
|
||
|
end
|
||
|
end
|