15 lines
318 B
Ruby
15 lines
318 B
Ruby
class CreateTinyUrls < ActiveRecord::Migration[6.0]
|
|
def change
|
|
create_table :tiny_urls do |t|
|
|
t.string :url
|
|
t.string :slug
|
|
t.text :description
|
|
t.datetime :start_at
|
|
t.datetime :stop_at
|
|
t.integer :nbr_views
|
|
|
|
t.timestamps
|
|
end
|
|
end
|
|
end
|