12 lines
218 B
Ruby
12 lines
218 B
Ruby
class CreateWork < ActiveRecord::Migration[5.2]
|
|
def change
|
|
create_table :work do |t|
|
|
t.text :description
|
|
t.integer :amount
|
|
t.integer :homie_id, null: false
|
|
|
|
t.timestamps
|
|
end
|
|
end
|
|
end
|