ambition/db/migrate/20161210045652_create_share...

10 lines
164 B
Ruby

class CreateShares < ActiveRecord::Migration
def change
create_table :shares do |t|
t.string :content
t.timestamps null: false
end
end
end