blob: 60c81e6d35520e9eb5ed9a485d3a4b5cde014a3d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
class CreateAppearances < ActiveRecord::Migration
def change
create_table :appearances do |t|
t.string :title
t.text :description
t.string :logo
t.integer :updated_by
t.timestamps
end
end
end
|