sideplace_app/db/migrate/20151003233937_create_annonce_draws.rb

15 lines
312 B
Ruby

class CreateAnnonceDraws < ActiveRecord::Migration
def change
create_table :annonce_draws do |t|
t.integer :create_year
t.boolean :artist
t.boolean :signed
t.boolean :original
t.boolean :certificat
t.string :artist_text
t.timestamps null: false
end
end
end