16 lines
347 B
Ruby
16 lines
347 B
Ruby
class CreateAnnonceGraphics < ActiveRecord::Migration
|
|
def change
|
|
create_table :annonce_graphics do |t|
|
|
t.integer :create_year
|
|
t.boolean :artist
|
|
t.boolean :signed
|
|
t.boolean :original
|
|
t.boolean :certificat
|
|
t.string :support_type
|
|
t.string :artist_text
|
|
|
|
t.timestamps null: false
|
|
end
|
|
end
|
|
end
|