10 lines
164 B
Ruby
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
|