13 lines
251 B
Ruby
13 lines
251 B
Ruby
|
|
class CreateMorales < ActiveRecord::Migration[8.1]
|
||
|
|
def change
|
||
|
|
create_table :morales do |t|
|
||
|
|
t.integer :game_id
|
||
|
|
t.string :name
|
||
|
|
t.float :value
|
||
|
|
t.float :min_value
|
||
|
|
t.float :max_value
|
||
|
|
t.timestamps
|
||
|
|
end
|
||
|
|
end
|
||
|
|
end
|