15 lines
312 B
Ruby
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
|